*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-size: 1.3rem;
}

.container{
	min-height: 100vh;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 20px;
	background: linear-gradient(to bottom right,#f9dbbd,#ffa5ab, #da627d, #a53860,#450920);
}

.left-text{
	flex-basis: 30%;
}

.heading{
	color: #450920;
	font-size: 3rem;
	text-align: center;
    font-family: "Faculty Glyphic", serif;
    font-weight: bold;
    font-style: normal;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.subheading{
    font-family: "Faculty Glyphic", serif;
    font-weight: 400;
    font-style: normal;
    color: #450920	;
    text-align: center;
    margin-top: 15px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);    
}

.gallery{
	flex-basis: 50%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 120px;
	gap: 8px;
}

.box{
	background-position: bottom;
	background-size:cover;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #222;
	background-blend-mode: hard-light;
	text-shadow: 5px 5px 5px rgba(0, 0, 0, 1.0); 
	color: white;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.box:hover{
	background-color: #999;
	box-shadow: 0px 0px 4px white;
	transition: all 1s ease-in-out;
	background-position: center;
	}

.box-4:hover{
	background-color: #444;
}

/*#box-1{
    grid-column-start: 1;
    grid-column-end: 3;
    grid-column: span;
}*/

.rowspan{
    grid-row: span 2;
}

.colspan{
    grid-column: span 2;
}

 .rowspan3{
	grid-row: span 3;
}

@media screen and (max-width: 1024px){
	.container{
		flex-direction: column;
		padding-block: 20px;
	}

	.gallery{
		width: 100%;
		grid-auto-rows: 220px;
	}

	.box{
		grid-row: span 1;
		grid-column: span 3;
/*		Each image will take up the space of one row and three columns*/
	}
}